home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvtools / demos / cpitdemo / cpit_vars.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-08  |  1019 b   |  49 lines

  1. #ifndef lint
  2. static char SccsId[]= "@(#)cpit_vars.c    V1.4    3/15/95";
  3. #endif
  4.  
  5. /*------------------------------------------------------------------
  6. | file name -- cpit_vars.c
  7. |-----------------------------------------------------------------*/
  8.  
  9. #include "std.h"
  10. #include "dvstd.h"
  11. #include "dvtools.h"
  12. #include "VOstd.h"
  13. #include "cpit_vars.h"
  14. #include "cpit_fundecl.h"
  15.  
  16.  
  17.  
  18. /* DECLARATION and INITIALIZATION of global variables for DISPLAY */
  19. DV_BOOL ApplicationState;
  20. DRAWPORT ActiveDrawport, MenuDrawport;
  21. VIEW ActiveView;
  22. OBJECT MenuScreen, MainScreen, ActiveScreen;
  23.  
  24. CHAR *ActiveOverlayName = NULL;
  25.  
  26. SYMTABLE
  27.   DpTable, ViewTable;
  28.  
  29. /* REMINDER: NUM_DISPLAYS is set in cpit_vars.h */
  30. CHAR *MainViewNames[NUM_DISPLAYS] =
  31. {
  32.   "cpit.v",
  33.   "ipanel.v",
  34.   "mfd.v",
  35.   "flt_test.v"
  36. };
  37.  
  38. /* REMINDER: NUM_OVERLAYS is set in cpit_vars.h */
  39. CHAR *OverlayViewNames[NUM_OVERLAYS] =
  40. {
  41.   "mfd0.v",
  42.   "mfd1.v",
  43.   "mfd2.v",
  44.   "mfd3.v",
  45.   "mfd4.v"
  46. };
  47.  
  48. DISPLAY_LIST *DisplayList = NULL;
  49.